We don't necessarily want to depend on a newer version of GLib, given
that we're not really using g_memdup() in the wrong way.
const GdkDebugKey *keys,
guint nkeys);
+/* Backward compatibility shim, to avoid bumping up the minimum
+ * required version of GLib; most of our uses of g_memdup() are
+ * safe, and those that aren't have been fixed
+ */
+#if !GLIB_CHECK_VERSION (2, 67, 3)
+# define g_memdup2(mem,size) g_memdup((mem),(size))
+#endif
+
#endif /* __GDK__PRIVATE_H__ */